home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / pcwiz01.arc / PRINT.INS < prev    next >
Text File  |  1991-08-22  |  3KB  |  91 lines

  1. PRINT    Used primarily to print the contents of files
  2.          to your printer device. Through the use of the
  3.          "queue", multiple files can be included in a
  4.          single PRINT command and these files will be
  5.          automatically printed in order while you are
  6.          using the computer to perform other work.
  7.  
  8. Format:  PRINT [/D][/Q][/C][/T][/P] FileSpec(s)
  9.  
  10.    /D:device   DEVICE to which output is to be directed
  11.  
  12.    /Q:size     maximum number of entries for the QUEUE
  13.                (default size is 10).
  14.  
  15.    /C   CANCELS the previous and following entries on
  16.         the command line. (Removes files from QUEUE.)
  17.  
  18.    /T   CANCELS the QUEUE completely.
  19.    /P   ADDS the previous and following entries on the
  20.         command line.
  21.  
  22. Example:          PRINT /D:LPT1 /Q:32
  23.  
  24.    Sets up the output DEVICE as the lpt1 printer and
  25.    establishes a QUEUE size of 32.
  26.  
  27. Example:           PRINT MYFILE.TXT
  28.  
  29.    Prints the contents of the file named MYFILE.TXT
  30.    that is located in the CURRENT directory.
  31.  
  32. Example:       PRINT MYFILE.TXT *.LTR
  33.  
  34.    Prints the contents of the file named MYFILE.TXT
  35.    and ALL files with a .LTR ext that are located in
  36.    the CURRENT directory. (Up to max QUEUE size.)
  37. Example:   PRINT MYFILE.TXT \WP\LTRS\MARY.LTR
  38.  
  39.    Prints MYFILE.TXT file in the CURRENT directory and
  40.    the file named MARY.LTR that is located in the
  41.    \WP\LTRS subdirectory of the CURRENT drive.
  42.  
  43. Example:         PRINT /C WP\LTRS\MARY.LTR
  44.  
  45.    CANCELS the queue entry for the file named MARY.LTR
  46.    in the \WP\LTRS directory on the CURRENT drive.
  47.  
  48. Example:   PRINT /C MARY.LTR JANE.LTR /P JOHN.LTR
  49.  
  50.    CANCELS the queue entry for the file named MARY.LTR
  51.    in the CURRENT directory and ADDS the files named
  52.    JANE.LTR and JOHN.LTR in the CURRENT directory to
  53.    the queue.
  54.  
  55. Example:   PRINT MARY.LTR /C JANE.LTR JULIE.LTR /P
  56.  
  57.    CANCELS the queue entries for files named MARY.LTR
  58.    and JANE.LTR in the CURRENT directory and ADDS the
  59.    file named JULIE.LTR in the CURRENT directory to
  60.    queue.
  61.  
  62. Example:  PRINT \WP\*.TXT /C JANE.LTR \WP\*.LTR /P
  63.  
  64.    CANCELS the queue entries for ALL files in the \WP
  65.    directory with a .TXT ext and the JANE.LTR file in
  66.    CURRENT directory and ADDS ALL files with a .LTR
  67.    ext that are in the \WP directory.
  68.  
  69. Example:               PRINT
  70.  
  71.    The PRINT command when used with no parameters or
  72.    switches will display a QUEUE Status Report.
  73. Example:             PRINT /T
  74.  
  75.    Terminates all in-progress printing and CANCELS all
  76.    files that were previously placed in the queue by
  77.    earlier PRINT commands.
  78.  
  79.  
  80. [*]  The PRINT command is the means by which the user
  81.    controls the entries in the QUEUE. Essentially, the
  82.    QUEUE is simply a "holding area" where the names of
  83.    the files are stored until they are passed to the
  84.    device for printing. This allows printing activities
  85.    to take place in the "background" and frees up the
  86.    computer for other activities needed by the user.
  87.  
  88. [*]  The switches for control of memory allocation and
  89.    printing times for the PRINT command (/B:,/U:,/M:
  90.    and /S:) are not covered in this program.
  91.